home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / os2 / rsynth1.zip / phones.c < prev    next >
C/C++ Source or Header  |  1994-10-31  |  415b  |  29 lines

  1. #include <config.h>
  2. #include <stdio.h>
  3. #include "phones.h"
  4.  
  5. #ifdef __STDC__
  6. #define PHONE(nm,br,am,ex) #nm,
  7. #else
  8. #define PHONE(nm,br,am,ex) "nm",
  9. #endif
  10. char *ph_name[] =
  11. {" ",
  12. #include "phones.def"
  13.  NULL};
  14. #undef PHONE
  15.  
  16. #define PHONE(nm,br,am,ex) br,
  17. char *ph_br[] =
  18. {" ",
  19. #include "phones.def"
  20.  NULL};
  21. #undef PHONE
  22.  
  23. #define PHONE(nm,br,am,ex) am,
  24. char *ph_am[] =
  25. {" ",
  26. #include "phones.def"
  27.  NULL};
  28. #undef PHONE
  29.